home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / olrdrs / qwktxt46.zip / MAKEFILE < prev    next >
Text File  |  1993-12-25  |  296b  |  15 lines

  1. #
  2. # Makefile for QWK2TXT and Microsoft's NMAKE.EXE
  3. #
  4.  
  5. ALL : qwktxt46.exe
  6.  
  7. qwktxt46.obj : qwktxt46.c qwktxt46.h
  8.         cl /AH /nologo /Oxaz /Grs /W0 /c qwktxt46.c
  9.  
  10. qwktxt46.exe : qwktxt46.obj
  11.         link qwktxt46,qwktxt46;
  12.         pklite qwktxt46.exe
  13.         del /qy qwktxt46.obj
  14.  
  15.